home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gwuada_5.zip / adaed / spider / draw7.ada < prev    next >
Text File  |  1993-02-04  |  277b  |  14 lines

  1. WITH Spider; USE Spider;
  2. PROCEDURE Drawing7 IS
  3. BEGIN 
  4. Start;
  5. Red; 
  6. WHILE NOT AtWall LOOP -- the WHILE statement starts the loop
  7.      Step; --  any statements here are repeated
  8. END LOOP;
  9. Green;  --  then execution proceeds from here
  10. Turn;
  11. Step;
  12. Quit;
  13. END Drawing7;
  14.